home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-13 | 557 b | 37 lines | [TEXT/EDIT] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class TEST_EVAL17
-
- creation make
-
- feature
-
- make is
- local
- a: ARRAY[CHARACTER];
- do
- !!a.make(1,3);
- a.put('a',1);
- a.put('b',2);
- a.put('c',3);
- check
- a.item(1) = 'a';
- a.item(2) = 'b';
- a.item(3) = 'c';
- end;
- a := Void;
- check
- a = Void;
- end;
- a := <<'a','b','c'>>;
- check
- a.item(1) = 'a';
- a.item(2) = 'b';
- a.item(3) = 'c';
- end;
-
- end;
-
- end -- TEST_EVAL17
-